projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f53c0c
)
message-goto-body-1: Fix regexp so as not to match multi-line
author
Katsumi Yamaoka
<yamaoka@jpl.org>
Tue, 21 Feb 2017 00:24:05 +0000
(
00:24
+0000)
committer
Katsumi Yamaoka
<yamaoka@jpl.org>
Tue, 21 Feb 2017 00:24:05 +0000
(
00:24
+0000)
* lisp/gnus/message.el (message-goto-body-1):
Fix regexp so as not to match multi-line.
lisp/gnus/message.el
patch
|
blob
|
history
diff --git
a/lisp/gnus/message.el
b/lisp/gnus/message.el
index 079ed52ba5188307091cf81262992781b4ac894e..a8f2b143f21b0ebbf5c77b1498f98ac706236cb2 100644
(file)
--- a/
lisp/gnus/message.el
+++ b/
lisp/gnus/message.el
@@
-3119,7
+3119,7
@@
M-RET `message-newline-and-reformat' (break the line and reformat)."
;; hard way.
(progn
;; Skip past all headers and continuation lines.
- (while (looking-at "[^
:]+:\\|[\t ]+[^\t
]")
+ (while (looking-at "[^
\t\n :]+:\\|[\t ]+[^\t\n
]")
(forward-line 1))
;; We're now at the first empty line, so perhaps move past it.
(when (and (eolp)